home *** CD-ROM | disk | FTP | other *** search
/ Mac Magazin/MacEasy 79 / maccd 79.iso / multimedial / GL Tron / Source / Project / include / stdclib / VaListTDef.h < prev   
Encoding:
C/C++ Source or Header  |  1999-12-29  |  301 b   |  18 lines  |  [TEXT/MPS ]

  1. /*
  2.     VaListDef.h -- Common definitions
  3.     
  4.     Copyright Apple Computer,Inc.    1987-1990, 1994
  5.     All rights reserved.
  6.  
  7.     va_list - defined by stdarg and stdio.  NOT defined by stddef when explicitly
  8.     included.
  9. */
  10.  
  11. #ifndef __VALISTDEF__
  12. #define __VALISTDEF__
  13.  
  14. typedef char *va_list;
  15.  
  16. #endif    /* __VALISTDEF__ */
  17.  
  18.